home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
T U R B O Language
/
Turbo C v3.0
/
TC3SETUP.EXE
/
EXAMPLES
/
INTRO13.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1992-02-18
|
423b
|
16 lines
// INTRO13.CPP--Example from Chapter 3, "An Introduction to C++"
#include <iostream.h>
int main()
{
int first, second;
cout << "\nInput two numbers ";
cin >> first >> second;
cout << "First > second has the value "<< (first > second) << '\n';
cout << "first < second has the value " << (first < second) << '\n';
cout << "first == second has the value "<< (first == second) << '\n';
return 0;
}